home *** CD-ROM | disk | FTP | other *** search
- /* DEC/CMS REPLACEMENT HISTORY, Element SHELL.H */
- /* 7 31-MAR-1988 12:05:13 TREGGIARI "MARCH 30 INTRINSICS" */
- /* 6 24-MAR-1988 16:12:00 TREGGIARI "Replace with completely new version" */
- /* *5 27-FEB-1988 18:25:34 GEORGE "Add copyright" */
- /* *4 5-JAN-1988 16:00:20 TREGGIARI "Replace with completely new version" */
- /* *3 18-DEC-1987 14:17:14 TREGGIARI "Replace with completely new version" */
- /* *2 2-NOV-1987 17:23:50 TREGGIARI "Replace with completely new version" */
- /* *1 2-NOV-1987 14:59:35 ORGOVAN "Initial Entry" */
- /* DEC/CMS REPLACEMENT HISTORY, Element SHELL.H */
- /*
- * $Header: Shell.h,v 6.4 87/12/07 02:48:13 haynes Exp $
- */
- /*
- *****************************************************************************
- ** *
- ** COPYRIGHT (c) 1988 BY *
- ** DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. *
- ** ALL RIGHTS RESERVED *
- ** *
- ** THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED *
- ** ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE *
- ** INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER *
- ** COPIES THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY *
- ** OTHER PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY *
- ** TRANSFERRED. *
- ** *
- ** THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE *
- ** AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT *
- ** CORPORATION. *
- ** *
- ** DIGITAL ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS *
- ** SOFTWARE ON EQUIPMENT WHICH IS NOT SUPPLIED BY DIGITAL. *
- ** *
- *****************************************************************************
- **++
- ** FACILITY:
- **
- ** < to be supplied >
- **
- ** ABSTRACT:
- **
- ** < to be supplied >
- **
- ** ENVIRONMENT:
- **
- ** < to be supplied >
- **
- ** MODIFICATION HISTORY:
- **
- ** < to be supplied >
- **
- **--
- **/
-
- #ifndef _XtShell_h
- #define _XtShell_h
-
- /***********************************************************************
- *
- * Shell Widget
- *
- ***********************************************************************/
- /*
- * Shell specific atoms
- */
- #define XtNiconName "iconName"
- #define XtCIconName "IconName"
- #define XtNiconPixmap "iconPixmap"
- #define XtCIconPixmap "IconPixmap"
- #define XtNiconWindow "iconWindow"
- #define XtCIconWindow "IconWindow"
- #define XtNiconMask "iconMask"
- #define XtCIconMask "IconMask"
- #define XtNwindowGroup "windowGroup"
- #define XtCWindowGroup "WindowGroup"
-
- #define XtNsaveUnder "saveUnder"
- #define XtCSaveUnder "SaveUnder"
- #define XtNtransient "transient"
- #define XtCTransient "Transient"
- #define XtNoverrideRedirect "overrideRedirect"
- #define XtCOverrideRedirect "OverrideRedirect"
-
- #define XtNallowshellresize "allowShellResizeRequest"
- #define XtCAllowshellresize "AllowShellResizeRequest"
- #define XtNcreatePopupChildProc "createPopupChildProc"
- #define XtCCreatePopupChildProc "CreatePopupChildProc"
-
- #define XtNtitle "title"
- #define XtCTitle "Title"
-
- /*
- * The following are only used at creation and can not be changed via
- * SetValues.
- */
- #define XtNiconX "iconX"
- #define XtCIconX "iconX"
- #define XtNiconY "iconY"
- #define XtCIconY "iconY"
- #define XtNinput "input"
- #define XtCInput "Input"
- #define XtNiconic "iconic"
- #define XtCIconic "Iconic"
- #define XtNinitial "initialstate"
- #define XtCInitial "InitialState"
- #define XtNgeometry "geometry"
- #define XtCGeometry "Geometry"
- #define XtNminWidth "minWidth"
- #define XtCMinWidth "MinWidth"
- #define XtNminHeight "minHeight"
- #define XtCMinHeight "MinHeight"
- #define XtNmaxWidth "maxWidth"
- #define XtCMaxWidth "MaxWidth"
- #define XtNmaxHeight "maxHeight"
- #define XtCMaxHeight "MaxHeight"
- #define XtNwidthInc "widthInc"
- #define XtCWidthInc "WidthInc"
- #define XtNheightInc "heightInc"
- #define XtCHeightInc "HeightInc"
- #define XtNminAspectDenom "minAspectDenom"
- #define XtCMinAspectDenom "MinAspectDenom"
- #define XtNmaxAspectDenom "maxAspectDenom"
- #define XtCMaxAspectDenom "MaxAspectDenom"
- #define XtNminAspectNum "minAspectNum"
- #define XtCMinAspectNum "MinAspectNum"
- #define XtNmaxAspectNum "maxAspectNum"
- #define XtCMaxAspectNum "MaxAspectNum"
- #define XtNwmTimeout "wmTimeout"
- #define XtCWmTimeout "WmTimeout"
- #define XtNwaitforwm "waitforwm"
- #define XtCWaitforwm "Waitforwm"
-
- /* Class record constants */
-
- typedef struct _ShellClassRec *ShellWidgetClass;
- typedef struct _OverrideShellClassRec *OverrideShellWidgetClass;
- typedef struct _WMShellClassRec *WMShellWidgetClass;
- typedef struct _TransientShellClassRec *TransientShellWidgetClass;
- typedef struct _TopLevelShellClassRec *TopLevelShellWidgetClass;
- typedef struct _ApplicationShellClassRec *ApplicationShellWidgetClass;
-
- #ifndef SHELL
- globalref WidgetClass shellWidgetClass;
- globalref WidgetClass overrideShellWidgetClass;
- globalref WidgetClass wmShellWidgetClass;
- globalref WidgetClass transientShellWidgetClass;
- globalref WidgetClass topLevelShellWidgetClass;
- globalref WidgetClass applicationShellWidgetClass;
- #endif
-
- #endif _XtShell_h
- /* DON'T ADD STUFF AFTER THIS #endif */
-